SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

C++ 教學(四) 條件敘述句

C++ 教學(四) 條件敘述句

多個 Component 元件如何組在一起?

多個 Component 元件如何組在一起?

裝 nuxt 遇到的問題

裝 nuxt 遇到的問題






留言討論